home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 21 / CU Amiga Magazine's Super CD-ROM 21 (1998)(EMAP Images)(GB)[!][issue 1998-04].iso / CUCD / Programming / Python-1.4 / Python1.4_Source / Objects / protos / stringobject_protos.h < prev    next >
Text File  |  1996-12-15  |  839b  |  17 lines

  1.  
  2. /* stringobject.c */
  3. static void string_dealloc ( object *op );
  4. static int string_print ( stringobject *op , FILE *fp , int flags );
  5. static object *string_repr ( stringobject *op );
  6. static int string_length ( stringobject *a );
  7. static object *string_concat ( stringobject *a , object *bb );
  8. static object *string_repeat ( stringobject *a , int n );
  9. static object *string_slice ( stringobject *a , int i , int j );
  10. static object *string_item ( stringobject *a , int i );
  11. static int string_compare ( stringobject *a , stringobject *b );
  12. static long string_hash ( stringobject *a );
  13. static object *getnextarg ( object *args , int arglen , int *p_argidx );
  14. static char *formatfloat ( int flags , int prec , int type , object *v );
  15. static char *formatint ( int flags , int prec , int type , object *v );
  16. static char *formatchar ( object *v );
  17.